home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / iv.dir / 00006_Mode scripts.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  7.1 KB  |  164 lines

  1. on SetMode _mode, override, anim
  2.   global givState, givCONTROLPANELSPRITE, givEDITTEXTBOXSPRITE, givMAINMONITORSPRITE, givDebug, givAnimEnable, givBASEMONITORSPRITE, givLOADSPRITE, givOrigTransitionList
  3.   if _mode = #play then
  4.     MoveModeSwitch(1)
  5.   else
  6.     MoveModeSwitch(5)
  7.   end if
  8.   if (the mode of givState = _mode) and voidp(override) then
  9.     nothing()
  10.   else
  11.     set the castNum of sprite (givCONTROLPANELSPRITE + 8) to the number of cast "nullcast"
  12.     set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "nullcast"
  13.     set the castNum of sprite (givCONTROLPANELSPRITE + 10) to the number of cast "nullcast"
  14.     set the castNum of sprite (givCONTROLPANELSPRITE + 11) to the number of cast "nullcast"
  15.     updateStage()
  16.     set the mode of givState to _mode
  17.     if _mode = #play then
  18.       repeat with N = 1 to 11
  19.         set the visible of sprite (givCONTROLPANELSPRITE + N) to 0
  20.       end repeat
  21.       updateStage()
  22.       if (anim <> "skip") and givAnimEnable then
  23.         PlayAnim(givCONTROLPANELSPRITE, "EditToPlay", 8, 1)
  24.       end if
  25.       set the castNum of sprite (givBASEMONITORSPRITE + 2) to the number of cast GetRandomMonitor()
  26.       set the castNum of sprite (givBASEMONITORSPRITE + 3) to the number of cast GetRandomMonitor()
  27.       set the castNum of sprite (givBASEMONITORSPRITE + 5) to the number of cast GetRandomMonitor()
  28.       if (the activeMonitor of givState = 2) or (the activeMonitor of givState = 3) or (the activeMonitor of givState = 5) then
  29.         SetActiveMonitor(1)
  30.         SetQuestionTextBox(1)
  31.       end if
  32.       set the castNum of sprite givCONTROLPANELSPRITE to the number of cast "ControlPanelPlay"
  33.       set the castNum of sprite (givCONTROLPANELSPRITE + 8) to the number of cast "play mode next button"
  34.       set the locH of sprite (givCONTROLPANELSPRITE + 8) to 429
  35.       set the locV of sprite (givCONTROLPANELSPRITE + 8) to 429
  36.       set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play mode play button"
  37.       set the locH of sprite (givCONTROLPANELSPRITE + 9) to 357
  38.       set the locV of sprite (givCONTROLPANELSPRITE + 9) to 429
  39.       set the castNum of sprite (givCONTROLPANELSPRITE + 10) to the number of cast "play mode stop button"
  40.       set the locH of sprite (givCONTROLPANELSPRITE + 10) to 285
  41.       set the locV of sprite (givCONTROLPANELSPRITE + 10) to 429
  42.       set the castNum of sprite (givCONTROLPANELSPRITE + 11) to the number of cast "play mode previous button"
  43.       set the locH of sprite (givCONTROLPANELSPRITE + 11) to 212
  44.       set the locV of sprite (givCONTROLPANELSPRITE + 11) to 429
  45.       set the locH of sprite (givCONTROLPANELSPRITE + 3) to -100
  46.       set the locV of sprite (givCONTROLPANELSPRITE + 3) to -100
  47.       set the visible of sprite (givCONTROLPANELSPRITE + 8) to 1
  48.       set the visible of sprite (givCONTROLPANELSPRITE + 9) to 1
  49.       set the visible of sprite (givCONTROLPANELSPRITE + 10) to 1
  50.       set the visible of sprite (givCONTROLPANELSPRITE + 11) to 1
  51.       set the visible of sprite givEDITTEXTBOXSPRITE to 0
  52.       set the castNum of sprite givMAINMONITORSPRITE to the number of cast "MainMonitorCastBlack"
  53.       if count(the editList of givState) > 0 then
  54.         SetMonitorListByNumber(3, the editList of givState)
  55.         SetMonitorPtr(givState, 3, 1)
  56.         DisplayMonitor(3)
  57.         BuildEditListText()
  58.       end if
  59.     else
  60.       repeat with N = 1 to 11
  61.         set the visible of sprite (givCONTROLPANELSPRITE + N) to 0
  62.       end repeat
  63.       updateStage()
  64.       if (anim <> "skip") and givAnimEnable then
  65.         PlayAnim(givCONTROLPANELSPRITE, "EditToPlay", 8, -1)
  66.       end if
  67.       set the castNum of sprite givCONTROLPANELSPRITE to the number of cast "ControlPanelEdit"
  68.       updateStage()
  69.       SetMonitorListByNumber(3, givOrigTransitionList)
  70.       SetMonitorPtr(givState, 3, 1)
  71.       DisplayEditTextBox()
  72.       if the activeMonitor of givState = 3 then
  73.         SetQuestionTextBox(1)
  74.       end if
  75.       DisplayMonitor(2)
  76.       DisplayMonitor(3)
  77.       DisplayMonitor(5)
  78.       set the castNum of sprite (givCONTROLPANELSPRITE + 8) to the number of cast "next button"
  79.       set the locH of sprite (givCONTROLPANELSPRITE + 8) to 426
  80.       set the locV of sprite (givCONTROLPANELSPRITE + 8) to 414
  81.       set the castNum of sprite (givCONTROLPANELSPRITE + 9) to the number of cast "play button"
  82.       set the locH of sprite (givCONTROLPANELSPRITE + 9) to 355
  83.       set the locV of sprite (givCONTROLPANELSPRITE + 9) to 413
  84.       set the castNum of sprite (givCONTROLPANELSPRITE + 10) to the number of cast "stop button"
  85.       set the locH of sprite (givCONTROLPANELSPRITE + 10) to 284
  86.       set the locV of sprite (givCONTROLPANELSPRITE + 10) to 413
  87.       set the castNum of sprite (givCONTROLPANELSPRITE + 11) to the number of cast "previous button"
  88.       set the locH of sprite (givCONTROLPANELSPRITE + 11) to 213
  89.       set the locV of sprite (givCONTROLPANELSPRITE + 11) to 413
  90.       set the locH of sprite (givCONTROLPANELSPRITE + 3) to 319
  91.       set the locV of sprite (givCONTROLPANELSPRITE + 3) to 437
  92.       set the visible of sprite (givCONTROLPANELSPRITE + 1) to 1
  93.       set the visible of sprite (givCONTROLPANELSPRITE + 2) to 1
  94.       set the visible of sprite (givCONTROLPANELSPRITE + 3) to 1
  95.       set the visible of sprite (givCONTROLPANELSPRITE + 4) to 1
  96.       set the visible of sprite (givCONTROLPANELSPRITE + 5) to 1
  97.       set the visible of sprite (givCONTROLPANELSPRITE + 6) to 1
  98.       set the visible of sprite (givCONTROLPANELSPRITE + 7) to 1
  99.       set the visible of sprite (givCONTROLPANELSPRITE + 8) to 1
  100.       set the visible of sprite (givCONTROLPANELSPRITE + 9) to 1
  101.       set the visible of sprite (givCONTROLPANELSPRITE + 10) to 1
  102.       set the visible of sprite (givCONTROLPANELSPRITE + 11) to 1
  103.       set the visible of sprite givEDITTEXTBOXSPRITE to 1
  104.       set the castNum of sprite givMAINMONITORSPRITE to the number of cast "MainMonitorCast"
  105.     end if
  106.   end if
  107.   MessagePut("mode set to" && the mode of givState)
  108. end
  109.  
  110. on ModeSwitchDrag
  111.   global givCONTROLPANELSPRITE, givState
  112.   set tmp to the mode of givState
  113.   PlaySoundWait("LEVER.AIF")
  114.   set executeOnce to 1
  115.   repeat while the mouseDown or executeOnce
  116.     set executeOnce to 0
  117.     set v to the mouseV
  118.     if v < 401 then
  119.       set tmp to #play
  120.       MoveModeSwitch(1)
  121.       next repeat
  122.     end if
  123.     if v < 416 then
  124.       set tmp to #play
  125.       MoveModeSwitch(2)
  126.       next repeat
  127.     end if
  128.     if v < 431 then
  129.       set tmp to #anim
  130.       MoveModeSwitch(3)
  131.       next repeat
  132.     end if
  133.     if v < 446 then
  134.       set tmp to #edit
  135.       MoveModeSwitch(4)
  136.       next repeat
  137.     end if
  138.     set tmp to #edit
  139.     MoveModeSwitch(5)
  140.   end repeat
  141.   if tmp = #anim then
  142.     repeat with I = 1 to 11
  143.       set the visible of sprite (givCONTROLPANELSPRITE + I) to 0
  144.     end repeat
  145.     updateStage()
  146.     PlaySoundWait("LEVERHAF.AIF")
  147.     if the mode of givState = #play then
  148.       PlayAnim(givCONTROLPANELSPRITE, "PlayToEdit", 4, 1)
  149.     else
  150.       PlayAnim(givCONTROLPANELSPRITE, "EditToPlay", 5, 1)
  151.     end if
  152.     go("ivTrollAnim")
  153.     exit
  154.   end if
  155.   SetMode(tmp)
  156. end
  157.  
  158. on MoveModeSwitch val
  159.   global givMODESWITCHSPRITE
  160.   MessagePut("move mode switch, position:" && val)
  161.   set the castNum of sprite givMODESWITCHSPRITE to 179 + val
  162.   updateStage()
  163. end
  164.